home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / devel / flash-0.4.3 / lib / flash.h < prev    next >
C/C++ Source or Header  |  1999-01-01  |  3KB  |  79 lines

  1. /*///////////////////////////////////////////////////////////
  2. // Flash Plugin and Player
  3. // Copyright (C) 1998 Olivier Debon
  4. // 
  5. // This program is free software; you can redistribute it and/or
  6. // modify it under the terms of the GNU General Public License
  7. // as published by the Free Software Foundation; either version 2
  8. // of the License, or (at your option) any later version.
  9. // 
  10. // This program is distributed in the hope that it will be useful,
  11. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13. // GNU General Public License for more details.
  14. // 
  15. // You should have received a copy of the GNU General Public License
  16. // along with this program; if not, write to the Free Software
  17. // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  18. // 
  19. ///////////////////////////////////////////////////////////// */
  20. #ifndef _FLASH_H_
  21. #define _FLASH_H_
  22.  
  23. #include <sys/time.h>
  24. #include <X11/Xlib.h>
  25.  
  26. #define PLUGIN_NAME "Shockwave Flash"
  27. #define FLASH_VERSION_STRING "Version 0.4.3"
  28.  
  29. #define FLASH_XEVENT_MASK (ExposureMask|ButtonReleaseMask|ButtonPressMask|PointerMotionMask)
  30.  
  31. /* Flags to pass to FlashExec */
  32. #define FLASH_WAKEUP 0x01
  33. #define FLASH_EVENT  0x02
  34. #define FLASH_CMD    0x04
  35.  
  36. /* Mask to extract commands */
  37. #define FLASH_CMD_MASK 0xf0
  38. /* Commands */
  39. #define FLASH_STOP     0x10    /* Pause the movie */
  40. #define FLASH_CONT     0x20    /* Continue the movie after pause */
  41. #define FLASH_REWIND   0x30    /* Rewind the movie and pause */
  42. #define FLASH_STEP     0x40    /* Frame by frame operation */
  43.  
  44. struct FlashInfo {
  45.     long frameRate;
  46.     long frameCount;
  47.     long frameWidth;
  48.     long frameHeight;
  49.     long version;
  50. };
  51.  
  52. /* Player settings */
  53. #define PLAYER_LOOP    (1<<0)
  54. #define PLAYER_QUALITY    (1<<1)
  55. #define PLAYER_MENU    (1<<2)
  56.  
  57. typedef void *FlashHandle;
  58.  
  59. #if defined(__cplusplus) || defined(c_plusplus)
  60. extern "C" {
  61. #endif
  62.  
  63. extern void FlashGetInfo(FlashHandle fh, struct FlashInfo *fi);
  64. extern long FlashGraphicInit(FlashHandle fh, Display *dpy, Window target);
  65. extern void FlashSoundInit(FlashHandle fh, char *device);
  66. extern FlashHandle FlashParse(char *data, long size);
  67. extern long FlashExec(FlashHandle fh, long flag, XEvent *event, struct timeval *wakeDate);
  68. extern void FlashClose(FlashHandle fh);
  69. extern void FlashSetGetUrlMethod(FlashHandle flashHandle, void (*getUrl)(char *, char *, void *), void *);
  70. extern void FlashZoom(FlashHandle fh, int zoom);
  71. extern void FlashOffset(FlashHandle fh, int x, int y);
  72. extern void FlashSettings(FlashHandle fh, long settings);
  73.  
  74. #if defined(__cplusplus) || defined(c_plusplus)
  75. };
  76. #endif
  77.  
  78. #endif /* _FLASH_H_ */
  79.